home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 49
/
Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso
/
-serious-
/
graphics
/
amicad
/
arexx
/
dater.amicad
< prev
next >
Wrap
Text File
|
1999-12-06
|
726b
|
31 lines
/* Inscription de la date */
/* Version 1.00: 2 décembre 1998 */
/* Version 1.01: 25 mai 1999 (utilisation rexxlocaldates.library) */
/* $VER: 1.01 (© R.Florac, 25/5/99) */
options results /* indispensable pour récupérer le résultat des macros */
signal on error /* pour l'interception des erreurs */
signal on syntax
IF (~SHOW('L','rexxlocaldates.library')) THEN
CALL ADDLIB('rexxlocaldates.library',0,-30,0)
Ib = OpenLocale()
jour = FormatDate(Ib, ,"%A %e %B %Y")
'WRITE("'jour'",0,0)'
exit
/* Traitement des erreurs, interruption du programme */
syntax:
erreur=RC
'MESSAGE("Erreur de syntaxe"+CHR(10)+"en ligne 'SIGL'"+CHR(10)+"'errortext(erreur)'")'
exit
error:
'MESSAGE("Erreur en ligne 'SIGL'")'
exit